home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 2.toast / pc / sample code / overview / dave falkenburg's sprocket / buildconditionals.h next >
Encoding:
C/C++ Source or Header  |  2000-09-28  |  1.6 KB  |  60 lines

  1. /*
  2.     File:        BuildConditionals.h
  3.  
  4.     Contains:    Defines used to control what capabilities are built
  5.  
  6.     Written by: Dave Falkenburg    
  7.  
  8.     Copyright:    Copyright © 1994-1999 by Apple Computer, Inc., All Rights Reserved.
  9.  
  10.                 You may incorporate this Apple sample source code into your program(s) without
  11.                 restriction. This Apple sample source code has been provided "AS IS" and the
  12.                 responsibility for its operation is yours. You are not permitted to redistribute
  13.                 this Apple sample source code as "Apple sample source code" after having made
  14.                 changes. If you're going to re-distribute the source, we require that you make
  15.                 it clear in the source that the code was descended from Apple sample source
  16.                 code, but that you've made changes.
  17.  
  18.     Change History (most recent first):
  19.                 8/19/1999    Karl Groethe    Updated for Metrowerks Codewarror Pro 2.1
  20.                 11/12/94    DRF                First checked in.
  21.                  9/9/94        DRF                Conditionalize AOCE support. Assume just a base system for now.
  22.                 9/1/94        DRF                We only run under System 7.0 or later. NOTE: This typically
  23.                                             requires rebuilding precompiled headers.
  24.  
  25. */
  26.  
  27. #ifndef    _BUILDCONDITIONALS_
  28. #define    _BUILDCONDITIONALS_
  29.  
  30. #define    SystemSevenOrLater    1
  31.  
  32. #ifndef    qDebug
  33. #define    qDebug                        0
  34. #endif
  35.  
  36. #ifndef    qAOCEAware
  37. #define    qAOCEAware                    0
  38. #endif
  39.  
  40. #ifndef    qUseQuickDrawGX
  41. #define    qUseQuickDrawGX                0
  42. #define    qRequireDrawGX                0
  43. #define    qUseQuickDrawGXDebugging    0
  44. #endif
  45.  
  46. #ifndef    qRequireThreadManager
  47. #define    qRequireThreadManager    0
  48. #endif
  49.  
  50. #ifndef    qInlineInputAware
  51. #define    qInlineInputAware    0
  52. #endif
  53.  
  54. #if    qUseQuickDrawGX
  55. //    Tell QuickDrawGX that we use universal headers
  56. #define    ppcinterfaces        1
  57. #endif
  58.  
  59. #endif
  60.